-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix timeout issues aws_route_table_association #30755
fix timeout issues aws_route_table_association #30755
Conversation
Community NoteVoting for Prioritization
For Submitters
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🚀.
% make testacc TESTARGS='-run=TestAccVPCRouteTableAssociation_\|TestAccVPCMainRouteTableAssociation_' PKG=ec2 ACCTEST_PARALLELISM=3
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/ec2/... -v -count 1 -parallel 3 -run=TestAccVPCRouteTableAssociation_\|TestAccVPCMainRouteTableAssociation_ -timeout 180m
=== RUN TestAccVPCMainRouteTableAssociation_basic
=== PAUSE TestAccVPCMainRouteTableAssociation_basic
=== RUN TestAccVPCRouteTableAssociation_Subnet_basic
=== PAUSE TestAccVPCRouteTableAssociation_Subnet_basic
=== RUN TestAccVPCRouteTableAssociation_Subnet_changeRouteTable
=== PAUSE TestAccVPCRouteTableAssociation_Subnet_changeRouteTable
=== RUN TestAccVPCRouteTableAssociation_Gateway_basic
=== PAUSE TestAccVPCRouteTableAssociation_Gateway_basic
=== RUN TestAccVPCRouteTableAssociation_Gateway_changeRouteTable
=== PAUSE TestAccVPCRouteTableAssociation_Gateway_changeRouteTable
=== RUN TestAccVPCRouteTableAssociation_disappears
=== PAUSE TestAccVPCRouteTableAssociation_disappears
=== CONT TestAccVPCMainRouteTableAssociation_basic
=== CONT TestAccVPCRouteTableAssociation_Gateway_basic
=== CONT TestAccVPCRouteTableAssociation_disappears
--- PASS: TestAccVPCRouteTableAssociation_disappears (27.36s)
=== CONT TestAccVPCRouteTableAssociation_Gateway_changeRouteTable
--- PASS: TestAccVPCRouteTableAssociation_Gateway_basic (33.03s)
=== CONT TestAccVPCRouteTableAssociation_Subnet_changeRouteTable
--- PASS: TestAccVPCMainRouteTableAssociation_basic (48.97s)
=== CONT TestAccVPCRouteTableAssociation_Subnet_basic
--- PASS: TestAccVPCRouteTableAssociation_Subnet_basic (33.17s)
--- PASS: TestAccVPCRouteTableAssociation_Subnet_changeRouteTable (49.49s)
--- PASS: TestAccVPCRouteTableAssociation_Gateway_changeRouteTable (55.63s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/ec2 90.860s
@meetreks Thanks for the contribution 🎉 👏. |
This functionality has been released in v4.64.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
Added timeout parameters which enable users to add custom wait times to cater for any timeouts due to the route table association ec2 operation.
Relations
Closes #28355
References
The EC2 API is eventually consistent. Kindly refer to this documentation for more details - https://docs.aws.amazon.com/AWSEC2/latest/APIReference/query-api-troubleshooting.html#eventual-consistency
Output from Acceptance Testing